home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -in_the_mag- / program_perfection / gui / boopsi_misc.c < prev    next >
C/C++ Source or Header  |  1999-12-08  |  383b  |  26 lines

  1. #include "defs.h"
  2.  
  3. #include <exec/types.h>
  4. #include <intuition/intuition.h>
  5.  
  6. #include <proto/intuition.h>
  7.  
  8.  
  9. ULONG
  10. QuickGetAttr( APTR object, ULONG attrID )
  11. {
  12.     ULONG storage;
  13.  
  14.     GetAttr( attrID, object, &storage );
  15.  
  16.     return storage;
  17. }
  18.  
  19.  
  20. VOID
  21. NotifyAttrChanges( Object *o, struct GadgetInfo *gi, ULONG flags, Tag attr1, ...)
  22. {
  23.     DoMethod(o, OM_NOTIFY, &attr1, gi, flags);
  24. }
  25.  
  26.